c# replace crlf

100

c# replace crlf -

// Remove all newlines from the 'example' string variable
string cleaned = example.Replace("\n", "").Replace("\r", "");

c# replace crlf -

String.Replace('\n', '\r') 

Comments

Submit
0 Comments